home *** CD-ROM | disk | FTP | other *** search
/ Chip 2004 April / CMCD0404.ISO / Software / Shareware / Programare / golden / goldensetup57420.exe / {app} / Golden32.exe / 0 / RCDATA / TLANGUAGEOPTIONS / TLANGUAGEOPTIONS.txt
Encoding:
Text File  |  2004-03-08  |  2.9 KB  |  148 lines

  1. object LanguageOptions: TLanguageOptions
  2.   Left = 226
  3.   Top = 103
  4.   BorderStyle = bsDialog
  5.   Caption = 'Language Formatted Copy/Paste Options'
  6.   ClientHeight = 269
  7.   ClientWidth = 488
  8.   Color = clBtnFace
  9.   Font.Charset = DEFAULT_CHARSET
  10.   Font.Color = clWindowText
  11.   Font.Height = -11
  12.   Font.Name = 'MS Sans Serif'
  13.   Font.Style = []
  14.   OldCreateOrder = True
  15.   OnCreate = FormCreate
  16.   OnDestroy = FormDestroy
  17.   OnShow = FormShow
  18.   PixelsPerInch = 96
  19.   TextHeight = 13
  20.   object Label3: TLabel
  21.     Left = 8
  22.     Top = 114
  23.     Width = 62
  24.     Height = 13
  25.     Caption = 'Sample SQL:'
  26.   end
  27.   object Bevel2: TBevel
  28.     Left = 8
  29.     Top = 106
  30.     Width = 472
  31.     Height = 9
  32.     Shape = bsTopLine
  33.   end
  34.   object rgFormattingStyle: TRadioGroup
  35.     Tag = 1
  36.     Left = 8
  37.     Top = 8
  38.     Width = 128
  39.     Height = 91
  40.     Caption = 'Formatting Style'
  41.     ItemIndex = 1
  42.     Items.Strings = (
  43.       'Delphi'
  44.       'VB/VBScript (ASP)'
  45.       'JavaScript/C++'
  46.       'Custom')
  47.     TabOrder = 0
  48.     OnClick = rgFormattingStyleClick
  49.   end
  50.   object FormatOptionsGroupBox: TGroupBox
  51.     Left = 142
  52.     Top = 8
  53.     Width = 338
  54.     Height = 91
  55.     Caption = 'Format Options'
  56.     TabOrder = 1
  57.     object Label1: TLabel
  58.       Left = 23
  59.       Top = 25
  60.       Width = 86
  61.       Height = 13
  62.       Alignment = taRightJustify
  63.       AutoSize = False
  64.       Caption = 'String delimiter:'
  65.     end
  66.     object Label2: TLabel
  67.       Left = 9
  68.       Top = 48
  69.       Width = 100
  70.       Height = 13
  71.       Alignment = taRightJustify
  72.       Caption = 'String Concatination/'
  73.     end
  74.     object Label5: TLabel
  75.       Left = 24
  76.       Top = 62
  77.       Width = 85
  78.       Height = 13
  79.       Alignment = taRightJustify
  80.       Caption = 'Line Continuation:'
  81.     end
  82.     object eStringDelimiter: TEdit
  83.       Tag = 1
  84.       Left = 115
  85.       Top = 21
  86.       Width = 42
  87.       Height = 21
  88.       MaxLength = 3
  89.       TabOrder = 0
  90.       Text = '"'
  91.       OnChange = FormatChange
  92.     end
  93.     object eLineContinuation: TEdit
  94.       Tag = 1
  95.       Left = 115
  96.       Top = 51
  97.       Width = 59
  98.       Height = 21
  99.       MaxLength = 20
  100.       TabOrder = 1
  101.       Text = ' & _'
  102.       OnChange = FormatChange
  103.     end
  104.     object cbDoubleStringDelimiter: TCheckBox
  105.       Tag = 1
  106.       Left = 171
  107.       Top = 23
  108.       Width = 138
  109.       Height = 17
  110.       Caption = 'Double StringDelimiter'
  111.       Checked = True
  112.       State = cbChecked
  113.       TabOrder = 2
  114.       OnClick = FormatChange
  115.     end
  116.   end
  117.   object mSample: TMemo
  118.     Left = 8
  119.     Top = 129
  120.     Width = 471
  121.     Height = 97
  122.     Lines.Strings = (
  123.       'select  '
  124.       #9'ename "Name", sal "Salary" '
  125.       'from emp '
  126.       'where ename = '#39'FORD'#39)
  127.     TabOrder = 2
  128.     WordWrap = False
  129.   end
  130.   object btnCopy: TRzButton
  131.     Left = 10
  132.     Top = 236
  133.     Default = True
  134.     Caption = 'OK'
  135.     HotTrack = True
  136.     TabOrder = 3
  137.     OnClick = btnCopyClick
  138.   end
  139.   object btnCancel: TRzButton
  140.     Left = 95
  141.     Top = 236
  142.     ModalResult = 2
  143.     Caption = 'Cancel'
  144.     HotTrack = True
  145.     TabOrder = 4
  146.   end
  147. end
  148.